home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / freebsd_libpng.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  58 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(12563);
  10.  script_bugtraq_id(10244);
  11.  script_version ("$Revision: 1.3 $");
  12.  script_cve_id("CAN-2004-0421");
  13.  name["english"] = "FreeBSD Ports : libpng < 1.2.5_4";
  14.  
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. The remote host has an installed version of the libpng package which is older
  19. than 1.2.5_4.
  20.  
  21. libpng is a package which contains a library of functions which 
  22. support program designed to manipulate the PNG file format.
  23.  
  24. There is a bug in the remote version of libpng which may allow an
  25. attacker to make libpng-enabled program to crash when reading
  26. a specially malformed .png file.
  27.  
  28. Solution : http://www.vuxml.org/freebsd/3a408f6f-9c52-11d8-9366-0020ed76ef5a.html
  29. Risk factor : High";
  30.  
  31.  
  32.  script_description(english:desc["english"]);
  33.  
  34.  summary["english"] = "Check for the version of the libpng package";
  35.  script_summary(english:summary["english"]);
  36.  
  37.  script_category(ACT_GATHER_INFO);
  38.  
  39.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  40.  family["english"] = "FreeBSD Local Security Checks";
  41.  script_family(english:family["english"]);
  42.  
  43.  script_dependencies("ssh_get_info.nasl");
  44.  script_require_keys("Host/FreeBSD/pkg_info");
  45.  exit(0);
  46. }
  47.  
  48.  
  49.  
  50. include("freebsd_package.inc");
  51.  
  52.  
  53. pkgs = get_kb_item("Host/FreeBSD/pkg_info");
  54.  
  55. package = egrep(pattern:"^libpng-", string:pkgs);
  56. if ( package && pkg_cmp(pkg:package, reference:"libpng-1.2.5_4") < 0 ) 
  57.     security_hole(0);
  58.